home *** CD-ROM | disk | FTP | other *** search
/ Comix Games / Comix Games.iso / jetsons / jetsons.exe / jetsons.dxr / 00075.ls < prev    next >
Encoding:
Text File  |  1996-11-19  |  1.0 KB  |  24 lines

  1. on HideAllSprites
  2.   global theFirstBackgroundFrame, theLastBackgroundFrame, theFirstBuildingChannel, theLastBuildingChannel, theFirstOtherShipChannel, theLastOtherShipChannel, theFirstPodChannel, theSecondPodChannel, theThirdPodChannel, theFourthPodChannel, theFirstClockChannel, theLastClockChannel, theFirstHeadChannel, theLastHeadChannel
  3.   repeat with h = theFirstHeadChannel to theLastHeadChannel
  4.     puppetSprite(h, 0)
  5.   end repeat
  6.   repeat with h = theFirstBackgroundFrame to theLastBackgroundFrame
  7.     puppetSprite(h, 0)
  8.   end repeat
  9.   repeat with h = theFirstBuildingChannel to theLastBuildingChannel
  10.     puppetSprite(h, 0)
  11.   end repeat
  12.   repeat with h = theFirstOtherShipChannel to theLastOtherShipChannel
  13.     puppetSprite(h, 0)
  14.   end repeat
  15.   HideShipSprite()
  16.   puppetSprite(theFirstPodChannel, 0)
  17.   puppetSprite(theSecondPodChannel, 0)
  18.   puppetSprite(theThirdPodChannel, 0)
  19.   puppetSprite(theFourthPodChannel, 0)
  20.   repeat with h = theFirstClockChannel to theLastClockChannel
  21.     puppetSprite(h, 0)
  22.   end repeat
  23. end
  24.